/* ==========================================================================
   ROOT VARIABLES
========================================================================== */
:root {
  --card-radius: 6px;
  --card-gap: 12px;
  --card-bg: #ffffff;
  --text-dark: #111;
  --text-muted: #7a7a7a;
  --price-color: #000;
}
/* ==========================================================================
   PRODUCT GRID
========================================================================== */
.product-card-grid,
.product-listing-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--card-gap);
  padding: 12px;
}

/* ==========================================================================
   PRODUCT CARD
========================================================================== */
.product-card,
.sh-product-card {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: none !important;
  box-shadow: none !important;
}

/* ==========================================================================
   PRODUCT IMAGE
========================================================================== */
.product-card-image-container {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #f6f6f6;
  position: relative;
  overflow: hidden;
}

.product-card-image,
.pr-long-card .pr-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   PRODUCT INFO & PRICE
========================================================================== */
.product-card-info,
.product-card-price,
.__className_337041 {
  color: var(--text-dark);
}

.product-card-info h2,
.product-card-info .product-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  color: #222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card-info .price {
  margin-top: 5px;
  font-size: 16px;
  font-weight: 900;
  color: #388e3c;
}

/* ==========================================================================
   WISHLIST ICON
========================================================================== */
.product-card .wishlist-button {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: #ffffff;
  border-radius: 50%;
  z-index: 30;
}

/* ==========================================================================
   PDP IMAGE WRAPPER
========================================================================== */
.main-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  margin: auto;
  background: #ffffff;
  overflow: hidden;
}

.main-image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
}
/* ==========================================================================
   PRODUCT DETAIL IMAGE FIX
========================================================================== */
.product-detail-grid .image-gallery-container *,
.product-detail-grid .image-gallery-container img {
  background-color: #ffffff !important;
}
.sh-shoopy-html-page > div {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.sh-shoopy-html-page .text-zinc-900,
.ref-widg.sh-referral-widget,
.woot-widget-powered-by {
  display: none !important;
}

/* ==========================================================================
   WOOT WIDGET FIX
========================================================================== */
.woot-widget-bubble {
  position: fixed !important;
  bottom: 64px !important;
  right: 16px !important;
  z-index: 999999 !important;
}

/* ==========================================================================
   HEADER ICON COLORS
========================================================================== */
@media (min-width: 769px) {
  .icon-button svg,
  .icon-button svg path,
  .utility-icons svg,
  .search-icon svg {
    stroke: #000 !important;
    fill: none !important;
  }
}
.banner.page-container,
.banner-collection.page-container {
  max-width: none;
  width: 100%;
}
/* ======= Header Flex Fix for Mobile ======= */
@media (max-width: 767px) {
  .main-header {
    justify-content: space-between;
  }
}
/* ===============================
   HOMEPAGE TRUE FULL WIDTH FIX
   =============================== */

.home-page .page-container > *:first-child,
.homepage .page-container > *:first-child,
.page-container > .homepage-banner,
.page-container > .home-banner,
.page-container > .hero,
.page-container > .swiper,
.page-container > .slick-slider {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: 50% !important;
  transform: translateX(-50%) !important;
}

/* Ensure images stretch correctly */
.home-page img,
.homepage img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Safety */
html,
body {
  overflow-x: hidden;
}

